Special Characters


Tip
It is possible to insert any character or special symbol in a program using its hexadecimal code.
  1. Open the Characters Map (All Programs > Accesories > System Tools)
  2. Select the font in the Characters Map, and then select the symbol to get its hexadecimal code.
In the example shown below, the textbox has the Arial font, and the Integral and Heart symbols were inserted.
Es posible insertar cualquier letra o símbolo especial en un programa usando su código en hexadecimal.
  1. Primeramente abra el Mapa de Caracteres (Todos los programas > Accesorios > Herramientas del Sistema)
  2. Seleccionar una fuente en el mapa de caracteres y luego seleccionar el caracter deseado para obtener su código en hexadecimal.
En el ejemplo mostrado la caja de texto tiene una fuente Arial y se inserto el símbolo de integral y de corazón.

Program.cpp
void Program::Window_Open(Win::Event& e)
{
     this->tbx1.Text += (wchar_t)0x222B;
     this->tbx1.Text += (wchar_t)0x2665;
}

CharMap

© Copyright 2000-2021 Wintempla selo. All Rights Reserved. Jul 22 2021. Home